home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11.lha / libX11 / pixmaps.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-22  |  1.8 KB  |  58 lines

  1. /* Copyright (c) 1996 by Terje Pedersen.  All Rights Reserved   */
  2. /*                                                              */
  3. /* By using this code you will agree to these terms:            */
  4. /*                                                              */
  5. /* 1. You may not use this code for profit in any way or form   */
  6. /*    unless an agreement with the author has been reached.     */
  7. /*                                                              */
  8. /* 2. The author is not responsible for any damages caused by   */
  9. /*    the use of this code.                                     */
  10. /*                                                              */
  11. /* 3. All modifications are to be released to the public.       */
  12. /*                                                              */
  13. /* Thats it! Have fun!                                          */
  14. /* TP                                                           */
  15. /*                                                              */
  16.  
  17. /***
  18.    NAME
  19.      pixmaps
  20.    PURPOSE
  21.      add pixmap handling to libX11
  22.    NOTES
  23.      
  24.    HISTORY
  25.      Terje Pedersen - Oct 27, 1994: Created.
  26. ***/
  27.  
  28. #include "libX11.h"
  29.  
  30. #include <intuition/intuition.h>
  31. #include <intuition/intuitionbase.h>
  32.  
  33. #include <graphics/gfx.h>
  34. #include <graphics/gfxbase.h>
  35. #include <graphics/gfxmacros.h>
  36. #include <graphics/displayinfo.h>
  37. #include <devices/timer.h>
  38.  
  39. #include <proto/intuition.h>
  40. #include <proto/graphics.h>
  41. #include <proto/gadtools.h>
  42. #include <proto/layers.h>
  43.  
  44. #include <dos.h>
  45. #include <signal.h>
  46. #include <stdlib.h>
  47. #include <time.h>
  48. #include <stdio.h>
  49.  
  50. #define XLIB_ILLEGAL_ACCESS 1
  51.  
  52. #include <X11/X.h>
  53. #include <X11/Xlib.h>
  54.  
  55. extern struct BitMap *alloc_bitmap(int,int,int);
  56. /*******************************************************************************************/
  57.  
  58.